home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / ruby / 1.8 / delegate.rb < prev    next >
Text File  |  2008-06-06  |  9KB  |  338 lines

  1. # = delegate -- Support for the Delegation Pattern
  2. #
  3. # Documentation by James Edward Gray II and Gavin Sinclair
  4. #
  5. # == Introduction
  6. #
  7. # This library provides three different ways to delegate method calls to an
  8. # object.  The easiest to use is SimpleDelegator.  Pass an object to the
  9. # constructor and all methods supported by the object will be delegated.  This
  10. # object can be changed later.
  11. #
  12. # Going a step further, the top level DelegateClass method allows you to easily
  13. # setup delegation through class inheritance.  This is considerably more
  14. # flexible and thus probably the most common use for this library.
  15. #
  16. # Finally, if you need full control over the delegation scheme, you can inherit
  17. # from the abstract class Delegator and customize as needed.  (If you find
  18. # yourself needing this control, have a look at _forwardable_, also in the
  19. # standard library.  It may suit your needs better.)
  20. #
  21. # == Notes
  22. #
  23. # Be advised, RDoc will not detect delegated methods.
  24. #
  25. # <b>delegate.rb provides full-class delegation via the
  26. # DelegateClass() method.  For single-method delegation via
  27. # def_delegator(), see forwardable.rb.</b>
  28. #
  29. # == Examples
  30. #
  31. # === SimpleDelegator
  32. #
  33. # Here's a simple example that takes advantage of the fact that
  34. # SimpleDelegator's delegation object can be changed at any time.
  35. #
  36. #   class Stats
  37. #     def initialize
  38. #       @source = SimpleDelegator.new([])
  39. #     end
  40. #     
  41. #     def stats( records )
  42. #       @source.__setobj__(records)
  43. #           
  44. #       "Elements:  #{@source.size}\n" +
  45. #       " Non-Nil:  #{@source.compact.size}\n" +
  46. #       "  Unique:  #{@source.uniq.size}\n"
  47. #     end
  48. #   end
  49. #   
  50. #   s = Stats.new
  51. #   puts s.stats(%w{James Edward Gray II})
  52. #   puts
  53. #   puts s.stats([1, 2, 3, nil, 4, 5, 1, 2])
  54. #
  55. # <i>Prints:</i>
  56. #
  57. #   Elements:  4
  58. #    Non-Nil:  4
  59. #     Unique:  4
  60. #   Elements:  8
  61. #    Non-Nil:  7
  62. #     Unique:  6
  63. #
  64. # === DelegateClass()
  65. #
  66. # Here's a sample of use from <i>tempfile.rb</i>.
  67. #
  68. # A _Tempfile_ object is really just a _File_ object with a few special rules
  69. # about storage location and/or when the File should be deleted.  That makes for
  70. # an almost textbook perfect example of how to use delegation.
  71. #
  72. #   class Tempfile < DelegateClass(File)
  73. #     # constant and class member data initialization...
  74. #   
  75. #     def initialize(basename, tmpdir=Dir::tmpdir)
  76. #       # build up file path/name in var tmpname...
  77. #     
  78. #       @tmpfile = File.open(tmpname, File::RDWR|File::CREAT|File::EXCL, 0600)
  79. #     
  80. #       # ...
  81. #     
  82. #       super(@tmpfile)
  83. #     
  84. #       # below this point, all methods of File are supported...
  85. #     end
  86. #   
  87. #     # ...
  88. #   end
  89. #
  90. # === Delegator
  91. #
  92. # SimpleDelegator's implementation serves as a nice example here.
  93. #
  94. #    class SimpleDelegator < Delegator
  95. #      def initialize(obj)
  96. #        super             # pass obj to Delegator constructor, required
  97. #        @_sd_obj = obj    # store obj for future use
  98. #      end
  99. #      def __getobj__
  100. #        @_sd_obj          # return object we are delegating to, required
  101. #      end
  102. #      def __setobj__(obj)
  103. #        @_sd_obj = obj    # change delegation object, a feature we're providing
  104. #      end
  105. #      # ...
  106. #    end
  107.  
  108. #
  109. # Delegator is an abstract class used to build delegator pattern objects from
  110. # subclasses.  Subclasses should redefine \_\_getobj\_\_.  For a concrete
  111. # implementation, see SimpleDelegator.
  112. #
  113. class Delegator
  114.   IgnoreBacktracePat = %r"\A#{Regexp.quote(__FILE__)}:\d+:in `"
  115.  
  116.   #
  117.   # Pass in the _obj_ to delegate method calls to.  All methods supported by
  118.   # _obj_ will be delegated to.
  119.   #
  120.   def initialize(obj)
  121.     preserved = ::Kernel.public_instance_methods(false)
  122.     preserved -= ["to_s","to_a","inspect","==","=~","==="]
  123.     for t in self.class.ancestors
  124.       preserved |= t.public_instance_methods(false)
  125.       preserved |= t.private_instance_methods(false)
  126.       preserved |= t.protected_instance_methods(false)
  127.       break if t == Delegator
  128.     end
  129.     preserved << "singleton_method_added"
  130.     for method in obj.methods
  131.       next if preserved.include? method
  132.       begin
  133.     eval <<-EOS, nil, __FILE__, __LINE__+1
  134.       def self.#{method}(*args, &block)
  135.         begin
  136.           __getobj__.__send__(:#{method}, *args, &block)
  137.         ensure
  138.           $@.delete_if{|s|IgnoreBacktracePat=~s} if $@
  139.         end
  140.       end
  141.     EOS
  142.       rescue SyntaxError
  143.         raise NameError, "invalid identifier %s" % method, caller(4)
  144.       end
  145.     end
  146.   end
  147.   alias initialize_methods initialize
  148.  
  149.   # Handles the magic of delegation through \_\_getobj\_\_.
  150.   def method_missing(m, *args)
  151.     target = self.__getobj__
  152.     unless target.respond_to?(m)
  153.       super(m, *args)
  154.     end
  155.     target.__send__(m, *args)
  156.   end
  157.  
  158.   # 
  159.   # Checks for a method provided by this the delegate object by fowarding the 
  160.   # call through \_\_getobj\_\_.
  161.   # 
  162.   def respond_to?(m, include_private = false)
  163.     return true if super
  164.     return self.__getobj__.respond_to?(m, include_private)
  165.   end
  166.  
  167.   #
  168.   # This method must be overridden by subclasses and should return the object
  169.   # method calls are being delegated to.
  170.   #
  171.   def __getobj__
  172.     raise NotImplementedError, "need to define `__getobj__'"
  173.   end
  174.  
  175.   # Serialization support for the object returned by \_\_getobj\_\_.
  176.   def marshal_dump
  177.     __getobj__
  178.   end
  179.   # Reinitializes delegation from a serialized object.
  180.   def marshal_load(obj)
  181.     initialize_methods(obj)
  182.     __setobj__(obj)
  183.   end
  184. end
  185.  
  186. #
  187. # A concrete implementation of Delegator, this class provides the means to
  188. # delegate all supported method calls to the object passed into the constructor
  189. # and even to change the object being delegated to at a later time with
  190. # \_\_setobj\_\_ .
  191. #
  192. class SimpleDelegator<Delegator
  193.  
  194.   # Pass in the _obj_ you would like to delegate method calls to.
  195.   def initialize(obj)
  196.     super
  197.     @_sd_obj = obj
  198.   end
  199.  
  200.   # Returns the current object method calls are being delegated to.
  201.   def __getobj__
  202.     @_sd_obj
  203.   end
  204.  
  205.   #
  206.   # Changes the delegate object to _obj_.
  207.   #
  208.   # It's important to note that this does *not* cause SimpleDelegator's methods
  209.   # to change.  Because of this, you probably only want to change delegation
  210.   # to objects of the same type as the original delegate.
  211.   #
  212.   # Here's an example of changing the delegation object.
  213.   #
  214.   #   names = SimpleDelegator.new(%w{James Edward Gray II})
  215.   #   puts names[1]    # => Edward
  216.   #   names.__setobj__(%w{Gavin Sinclair})
  217.   #   puts names[1]    # => Sinclair
  218.   #
  219.   def __setobj__(obj)
  220.     raise ArgumentError, "cannot delegate to self" if self.equal?(obj)
  221.     @_sd_obj = obj
  222.   end
  223.  
  224.   # Clone support for the object returned by \_\_getobj\_\_.
  225.   def clone
  226.     new = super
  227.     new.__setobj__(__getobj__.clone)
  228.     new
  229.   end
  230.   # Duplication support for the object returned by \_\_getobj\_\_.
  231.   def dup
  232.     new = super
  233.     new.__setobj__(__getobj__.clone)
  234.     new
  235.   end
  236. end
  237.  
  238. # :stopdoc:
  239. # backward compatibility ^_^;;;
  240. Delegater = Delegator
  241. SimpleDelegater = SimpleDelegator
  242. # :startdoc:
  243.  
  244. #
  245. # The primary interface to this library.  Use to setup delegation when defining
  246. # your class.
  247. #
  248. #   class MyClass < DelegateClass( ClassToDelegateTo )    # Step 1
  249. #     def initialize
  250. #       super(obj_of_ClassToDelegateTo)                   # Step 2
  251. #     end
  252. #   end
  253. #
  254. def DelegateClass(superclass)
  255.   klass = Class.new
  256.   methods = superclass.public_instance_methods(true)
  257.   methods -= ::Kernel.public_instance_methods(false)
  258.   methods |= ["to_s","to_a","inspect","==","=~","==="]
  259.   klass.module_eval {
  260.     def initialize(obj)  # :nodoc:
  261.       @_dc_obj = obj
  262.     end
  263.     def method_missing(m, *args)  # :nodoc:
  264.       unless @_dc_obj.respond_to?(m)
  265.         super(m, *args)
  266.       end
  267.       @_dc_obj.__send__(m, *args)
  268.     end
  269.     def respond_to?(m, include_private = false)  # :nodoc:
  270.       return true if super
  271.       return @_dc_obj.respond_to?(m, include_private)
  272.     end
  273.     def __getobj__  # :nodoc:
  274.       @_dc_obj
  275.     end
  276.     def __setobj__(obj)  # :nodoc:
  277.       raise ArgumentError, "cannot delegate to self" if self.equal?(obj)
  278.       @_dc_obj = obj
  279.     end
  280.     def clone  # :nodoc:
  281.       new = super
  282.       new.__setobj__(__getobj__.clone)
  283.       new
  284.     end
  285.     def dup  # :nodoc:
  286.       new = super
  287.       new.__setobj__(__getobj__.clone)
  288.       new
  289.     end
  290.   }
  291.   for method in methods
  292.     begin
  293.       klass.module_eval <<-EOS, __FILE__, __LINE__+1
  294.         def #{method}(*args, &block)
  295.       begin
  296.         @_dc_obj.__send__(:#{method}, *args, &block)
  297.       ensure
  298.         $@.delete_if{|s| ::Delegator::IgnoreBacktracePat =~ s} if $@
  299.       end
  300.     end
  301.       EOS
  302.     rescue SyntaxError
  303.       raise NameError, "invalid identifier %s" % method, caller(3)
  304.     end
  305.   end
  306.   return klass
  307. end
  308.  
  309. # :enddoc:
  310.  
  311. if __FILE__ == $0
  312.   class ExtArray<DelegateClass(Array)
  313.     def initialize()
  314.       super([])
  315.     end
  316.   end
  317.  
  318.   ary = ExtArray.new
  319.   p ary.class
  320.   ary.push 25
  321.   p ary
  322.  
  323.   foo = Object.new
  324.   def foo.test
  325.     25
  326.   end
  327.   def foo.error
  328.     raise 'this is OK'
  329.   end
  330.   foo2 = SimpleDelegator.new(foo)
  331.   p foo.test == foo2.test    # => true
  332.   foo2.error            # raise error!
  333. end
  334.